home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / NoSuchProviderException.java < prev    next >
Text File  |  1998-10-14  |  1KB  |  47 lines

  1. /*
  2.  * @(#)NoSuchProviderException.java    1.10 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.security;
  16.  
  17. /**
  18.  * This exception is thrown when a particular security provider is
  19.  * requested but is not available in the environment.
  20.  *
  21.  * @version 1.10 98/10/05
  22.  * @author Benjamin Renaud 
  23.  */
  24.  
  25. public class NoSuchProviderException extends Exception {
  26.  
  27.     /**
  28.      * Constructs a NoSuchProviderException with no detail message. A
  29.      * detail message is a String that describes this particular
  30.      * exception.
  31.      */
  32.     public NoSuchProviderException() {
  33.     super();
  34.     }
  35.  
  36.     /**
  37.      * Constructs a NoSuchProviderException with the specified detail
  38.      * message. A detail message is a String that describes this
  39.      * particular exception.  
  40.      *
  41.      * @param msg the detail message.  
  42.      */
  43.     public NoSuchProviderException(String msg) {
  44.     super(msg);
  45.     }
  46. }
  47.